home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / pctj8407.arc / UCLEXA.BAS < prev    next >
BASIC Source File  |  1986-09-14  |  2KB  |  37 lines

  1. 1000 'COM/ADD ROW 2,3 4    [Add rows 2 and 3 and put in row 4]
  2. 1005 'COM/DIV COL 3,1 6    [Divide column 3 by 1 and put in 6]]
  3. 1010 'COM/MAX ROW 5,4 6    [Put in row 6 the max of row 5 and 4]
  4. 1015 ' (Available operations: ADD, SUB, MUL, DIV, MIN, and MAX)
  5. 1020 '
  6. 2000 'DIS ALL              [Display all elements]
  7. 2005 'DIS ELE 5,2          [Display element in row 5, column 2]
  8. 2010 'DIS,ROW 2-5          [Display elements in rows 2 to 5]
  9. 2015 'DIS,COL,7            [Display elements in column 7]
  10. 2020 'DIS ROW 2-4 COL 3-7  [Display rows 2 to 4, columns 3 to 7]
  11. 2025 'DIS FOR              [Display the current format]
  12. 2030 '
  13. 3000 'EXA HEL              [Examples of the command HELP]
  14. 3005 'EXA NEW              [Examples of the command NEW]
  15. 3010 'EXA ALL              [Examples of all commands]
  16. 3015 '
  17. 4000 'GET A                [Get data set A in DATA statements]
  18. 4005 'GET TAX.DAT          [Get data from file TAX.DAT]
  19. 4010 '
  20. 5000 'HEL COM              [Show the names of all commands]
  21. 5005 'HEL ARI              [Describe the arithmetic operations]
  22. 5010 'HEL ALL              [Show all the HELP messages]
  23. 5015 '
  24. 6000 'NEW ELE 3,2 7        [Set element in row 3 column 2  to 7]
  25. 6005 'NEW ELE              [Prompt for setting new elements]
  26. 6010 'NEW ROW 3-5          [Prompt for new elelments in rows 3 to 5]
  27. 6015 'NEW COL 1            [Prompt for new elements in column 1]
  28. 6020 'NEW ALL              [Prompt for all new elements]
  29. 6025 'NEW FOR ###.#        [New format is ###.##]
  30. 6030 'NEW FOR "#,###.##"   [New format is #,###.##}
  31. 6035 '
  32. 7000 'SAV FINAL.DAT        [Save data in file FINAL.DAT]
  33. 7005 '
  34. 8000 'STOP                 [Stop running of the program]
  35. 8005 'STO ABC              [Chain to program ABC]
  36. 9999 '
  37.